projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bbbfa31
)
Fix environment variable for xdg-data-dirs
author
Steven Allen
<steven@stebalien.com>
Thu, 9 Feb 2017 06:08:09 +0000
(22:08 -0800)
committer
Mark Oteiza
<mvoteiza@udel.edu>
Thu, 9 Feb 2017 12:18:41 +0000
(07:18 -0500)
* lisp/xdg.el (xdg-data-dirs): Use XDG_DATA_DIRS, not XDG_CONFIG_DIRS
Copyright-paperwork-exempt: yes
lisp/xdg.el
patch
|
blob
|
history
diff --git
a/lisp/xdg.el
b/lisp/xdg.el
index 51218e339d1a8513bc605615c5cd93a28d0350a3..b11e104e2b7a3efbaa9b0d2ca0d0446ee5c74fd9 100644
(file)
--- a/
lisp/xdg.el
+++ b/
lisp/xdg.el
@@
-69,7
+69,7
@@
(defun xdg-data-dirs ()
"Return the data directory search path as a list."
- (let ((env (getenv "XDG_
CONFIG
_DIRS")))
+ (let ((env (getenv "XDG_
DATA
_DIRS")))
(if (or (null env) (string= env ""))
'("/usr/local/share/" "/usr/share/")
(parse-colon-path env))))